home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Examples / EnterpriseObjects / SHLExamples / Querying / EOQualifierContentsCategory.h < prev    next >
Encoding:
Text File  |  1994-07-31  |  816 b   |  34 lines

  1. /*--------------------------------------------------------------------------
  2.  *
  3.  *     You may freely copy, distribute, and reuse the code in this example.
  4.  *     SHL Systemhouse disclaims any warranty of any kind, expressed or  
  5.  *    implied, as to its fitness for any particular use.
  6.  *
  7.  *
  8.  *    Contents
  9.  *
  10.  *    Category Of:        EOQualifier
  11.  *
  12.  *    Declared In:        EOQualifierContentsCategory.h
  13.  *
  14.  *    Category Description
  15.  *
  16.  *        Retrieves the SQL contents of a qualifier in an auto-released
  17.  *        NSString format.  Must be a category since the _contents ivar
  18.  *        is declared protected.
  19.  *
  20.  *
  21.  *------------------------------------------------------------------------*/
  22. #import <eointerface/eointerface.h>
  23. #import <eoaccess/EOQualifier.h>
  24.  
  25. @class EODatabaseContext;
  26.  
  27.  
  28.  
  29. @interface EOQualifier  (Contents)
  30.  
  31. - (NSString *) contents;
  32.  
  33. @end
  34.